Return to doc.sitecore.com

  Web.config changes in Sitecore CMS 6.3.0 rev. 100830 compared to Sitecore CMS 6.3.0 rev. 100716

Select the link below to download the Web.config file of the default Sitecore CMS 6.3.0 rev. 100830 installation:

Below is the list of changes made to the Web.config file of Sitecore CMS 6.3.0 rev. 100830 as compared to the Web.config file of Sitecore CMS 6.3.0 rev. 100716:

  1. Added to the section <system.webServer> (this value should correspond to the value of the Media.MaxSizeInDatabase setting which by default is 500MB):
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="524288000" />
      </requestFiltering>
    </security>
  2. To allow upload of large files, the httpRuntime setting maxRequestLength has been changed to correspond to the value of the Media.MaxSizeInDatabase setting (which by default is 500MB).
    The setting has been changed from:
    <httpRuntime maxRequestLength="16384" executionTimeout="600"/>
    to:
    <httpRuntime maxRequestLength="512000" executionTimeout="600"/>